home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
toolkit
/
riruf1
/
rufabout.frm
< prev
next >
Wrap
Text File
|
1995-05-19
|
4KB
|
115 lines
VERSION 2.00
Begin Form RUFAboutForm
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
Caption = "About"
ClientHeight = 5220
ClientLeft = 1125
ClientTop = 1485
ClientWidth = 6855
Height = 5625
Left = 1065
LinkTopic = "Form1"
ScaleHeight = 5220
ScaleWidth = 6855
Top = 1140
Width = 6975
Begin PictureBox IconPic
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 495
Left = 810
ScaleHeight = 495
ScaleWidth = 495
TabIndex = 3
Top = 240
Width = 495
End
Begin CommandButton cmdOK
Caption = "&OK"
Height = 375
Left = 3000
TabIndex = 0
Top = 4740
Width = 975
End
Begin Label lblAbout2
BackColor = &H00404040&
Caption = "label"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00FFFFFF&
Height = 1635
Left = 600
TabIndex = 2
Top = 3060
Width = 5655
End
Begin Label lblAbout
Alignment = 2 'Center
BackColor = &H00404040&
BorderStyle = 1 'Fixed Single
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H0000FFFF&
Height = 5235
Left = 0
TabIndex = 1
Top = 0
Width = 6855
End
End
Option Explicit
Sub cmdOk_Click ()
Unload RUFAboutForm
End Sub
Sub Form_Load ()
Dim sAbout$
If bReg Then
lblAbout2.Visible = False
RUFAboutForm.Height = 4000
cmdOk.Top = 3500
End If
sAbout = Chr(10) + Chr(13)
sAbout = sAbout & TheAppTitle & "Ö" + Chr(10) + Chr(13) + Chr(10) + Chr(13)
sAbout = sAbout & "Version " & sVer + Chr(10) + Chr(13) + Chr(10) + Chr(13)
sAbout = sAbout & "Copyright ⌐ 1995 MIS Resources International, Inc." + Chr(10) + Chr(13)
sAbout = sAbout & "All rights reserved" + Chr(10) + Chr(13)
sAbout = sAbout & Chr(10) + Chr(13)
sAbout = sAbout & Chr(10) + Chr(13)
sAbout = sAbout & "MIS Resources International, Inc." + Chr(10) + Chr(13)
sAbout = sAbout & "Suite 301, 570 Colonial Park Drive" + Chr(10) + Chr(13)
sAbout = sAbout & "Roswell, Georgia 30075" + Chr(10) + Chr(13)
sAbout = sAbout & "Voice: (404) 640-3400 Fax: (404) 587-1932" + Chr(10) + Chr(13)
sAbout = sAbout & "Compuserve ID: 75350,205" + Chr(10) + Chr(13) + Chr(10) + Chr(13)
lblAbout = sAbout
If Not bReg Then
sAbout = TheAppTitle & " is shareware. You are allowed to evaluate this software "
sAbout = sAbout & "for 30 days. At the end of the evaluation period you must register it "
sAbout = sAbout & "or discontinue using the software. Registered users will receive a "
sAbout = sAbout & "copy of the current version without a nag screen, printed manual "
sAbout = sAbout & "and three months of technical support by phone and unlimited "
sAbout = sAbout & "technical support by fax or mail."
lblAbout2 = sAbout
End If
DoEvents
IconPic = MainForm.Icon
End Sub